home *** CD-ROM | disk | FTP | other *** search
/ infoROM 17,000 Product Descriptions for Business / infoROM Product Descriptions for Business - ESX Interactive.ISO / argdemos / nexsys / plot.dcl < prev    next >
Encoding:
Text File  |  1993-06-21  |  3.8 KB  |  114 lines

  1. plot : dialog {
  2.     label = "Plot Configuration";
  3.     : row {
  4.         : column {
  5.             : boxed_column {
  6.                 label = "Output Parameters";
  7.                 : row {
  8.                     : radio_column {
  9.                         key = "output";
  10.                         fixed_width = true;
  11.                         : radio_button {
  12.                             label = "LPT1";
  13.                             mnemonic = "1";
  14.                             key = "lpt1";
  15.                         }
  16.                         : radio_button {
  17.                             label = "LPT2";
  18.                             mnemonic = "2";
  19.                             key = "lpt2";
  20.                         }
  21.                         : radio_button {
  22.                             label = "LPT3";
  23.                             mnemonic = "3";
  24.                             key = "lpt3";
  25.                         }
  26.                         : radio_button {
  27.                             label = "Plot To File";
  28.                             mnemonic = "F";
  29.                             key = "file";
  30.                         }
  31.                     }
  32.                 }
  33.                 : row {
  34.                     alignment = centered;
  35.                     : button {
  36.                         label = "File Name...";
  37.                         mnemonic = "N";
  38.                         key = "sfile";
  39.                         fixed_width = true;
  40.                     }
  41.                 }
  42.             }
  43.             : boxed_column {
  44.                 label = "Image";
  45.                 : image {
  46.                     key = "image";
  47.                     width = 10;
  48.                     height = 8;
  49.                 }
  50.             }
  51.         }
  52.         : column {
  53.                 : list_box {
  54.                     label = "Paper Size";
  55.                     key = "sizes";
  56.                     multiple_select = false;
  57.                 }
  58.                 : boxed_row {
  59.                     label = "Plot Area";
  60.                     : edit_box {
  61.                         label = "Width";
  62.                         edit_width = 10;
  63.                         key = "width";
  64.                         alignment = centered;
  65.                         mnemonic = "W";
  66.                     }
  67.                     : edit_box {
  68.                         label = "Height";
  69.                         edit_width = 10;
  70.                         key = "height";
  71.                         alignment = centered;
  72.                         mnemonic = "H";
  73.                     }
  74.                 }
  75.                 : boxed_column {
  76.                     label = "Scale/Rotation";
  77.                     : row {
  78.                        : edit_box {
  79.                             label = "Plotted";
  80.                             edit_width = 10;
  81.                             key = "punit";
  82.                             alignment = centered;
  83.                             mnemonic = "P";
  84.                         }
  85.                         : text {
  86.                             label = "=";
  87.                         }
  88.                         : edit_box {
  89.                             label = "Raster";
  90.                             edit_width = 10;
  91.                             key = "runit";
  92.                             alignment = centered;
  93.                             mnemonic = "R";
  94.                         }
  95.                     }
  96.                     : row {
  97.                         : toggle {
  98.                             label = "Scaled to Fit";
  99.                             mnemonic = "S";
  100.                             key = "fit";
  101.                         }
  102.                         : toggle {
  103.                             label = "Rotate 90 degrees";
  104.                             mnemonic = "R";
  105.                             key = "rotate";
  106.                         }
  107.                     }
  108.                 }
  109.         }
  110.     }
  111.     ok_cancel;
  112. }
  113.  
  114.